const internal/sync.mutexWoken

8 uses

	internal/sync (current package)
		mutex.go#L27: 	mutexWoken
		mutex.go#L108: 			if !awoke && old&mutexWoken == 0 && old>>mutexWaiterShift != 0 &&
		mutex.go#L109: 				atomic.CompareAndSwapInt32(&m.state, old, old|mutexWoken) {
		mutex.go#L135: 			if new&mutexWoken == 0 {
		mutex.go#L138: 			new &^= mutexWoken
		mutex.go#L157: 				if old&(mutexLocked|mutexWoken) != 0 || old>>mutexWaiterShift == 0 {
		mutex.go#L215: 			if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken|mutexStarving) != 0 {
		mutex.go#L219: 			new = (old - 1<<mutexWaiterShift) | mutexWoken